home *** CD-ROM | disk | FTP | other *** search
- // trashcan.h
-
- #include "icon.h"
-
- class trashcan: public icon {
- public:
- trashcan (int x, int y, view* in_superview);
- virtual ~trashcan ();
-
- void fill_up();
- void empty();
- Boolean get_fullness() { return m_full; };
- Boolean do_cmd_self (int in_eventID, void* io_data);
-
- protected:
- Boolean m_full;
- };